home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet internetowy / Przegladarki internetowe / Mozilla Seamonkey 1.0.5 pl / seamonkey-1.0.5.pl-PL.win32.installer.exe / MAIL.XPI / bin / chrome / messenger.jar / content / messenger / am-server-advanced.xul < prev    next >
Encoding:
Extensible Markup Language  |  2005-06-15  |  6.1 KB  |  166 lines

  1. <?xml version="1.0"?>
  2.  
  3. <!-- ***** BEGIN LICENSE BLOCK *****
  4.  Version: MPL 1.1/GPL 2.0/LGPL 2.1
  5.  
  6.  The contents of this file are subject to the Mozilla Public License Version
  7.  1.1 (the "License"); you may not use this file except in compliance with
  8.  the License. You may obtain a copy of the License at
  9.  http://www.mozilla.org/MPL/
  10.  
  11.  Software distributed under the License is distributed on an "AS IS" basis,
  12.  WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  13.  for the specific language governing rights and limitations under the
  14.  License.
  15.  
  16.  The Original Code is Mozilla Communicator client code, released
  17.  March 31, 1998.
  18.  
  19.  The Initial Developer of the Original Code is
  20.  Netscape Communications Corporation.
  21.  Portions created by the Initial Developer are Copyright (C) 1998-1999
  22.  the Initial Developer. All Rights Reserved.
  23.  
  24.  Contributor(s):
  25.  
  26.  Alternatively, the contents of this file may be used under the terms of
  27.  either of the GNU General Public License Version 2 or later (the "GPL"),
  28.  or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  29.  in which case the provisions of the GPL or the LGPL are applicable instead
  30.  of those above. If you wish to allow use of your version of this file only
  31.  under the terms of either the GPL or the LGPL, and not to allow others to
  32.  use your version of this file under the terms of the MPL, indicate your
  33.  decision by deleting the provisions above and replace them with the notice
  34.  and other provisions required by the GPL or the LGPL. If you do not delete
  35.  the provisions above, a recipient may use your version of this file under
  36.  the terms of any one of the MPL, the GPL or the LGPL.
  37.  
  38.  ***** END LICENSE BLOCK ***** -->
  39.  
  40. <?xml-stylesheet href="chrome://messenger/skin/accountManage.css" type="text/css"?>
  41.  
  42. <?xul-overlay href="chrome://messenger/content/msgFolderPickerOverlay.xul"?>
  43.  
  44. <!DOCTYPE dialog SYSTEM "chrome://messenger/locale/am-server-advanced.dtd">
  45.  
  46. <dialog
  47.         xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  48.         title="&serverAdvanced.label;"
  49.         buttons="accept,cancel"
  50.         onload="onLoad();"
  51.         ondialogaccept="return onOk();">
  52.  
  53.   <script type="application/x-javascript" src="am-server-advanced.js"/>
  54.   <stringbundle id="bundle_prefs" src="chrome://messenger/locale/prefs.properties"/>
  55.  
  56.     <!-- IMAP Panel -->
  57.     <vbox id="imapPanel">
  58.       <hbox>
  59.         <label value="&serverDirectory.label;"
  60.                accesskey="&serverDirectory.accesskey;"
  61.                control="serverDirectory"/>
  62.         <textbox amsa_persist="true" id="serverDirectory"/>
  63.       </hbox>
  64.  
  65.       <checkbox amsa_persist="true" id="usingSubscription"
  66.                 label="&usingSubscription.label;"
  67.                 accesskey="&usingSubscription.accesskey;"/>
  68.  
  69.       <checkbox amsa_persist="true" id="dualUseFolders"
  70.                 label="&dualUseFolders.label;"
  71.                 accesskey="&dualUseFolders.accesskey;"/>
  72.  
  73.       <checkbox amsa_persist="true" id="useIdle"
  74.                 label="&useIdle.label;"
  75.                 accesskey="&useIdle.accesskey;"/>
  76.  
  77.       <separator class="groove"/>
  78.       <row>
  79.         <hbox align="center">
  80.           <label control="maximumConnectionsNumber"
  81.                  value="&maximumConnectionsNumber.label;"
  82.                  accesskey="&maximumConnectionsNumber.accesskey;"/>
  83.           <textbox amsa_persist="true" size="3" id="maximumConnectionsNumber"/>
  84.         </hbox>
  85.       </row>
  86.  
  87.       <separator class="groove"/>
  88.       <description>&namespaceDesc.label;</description>
  89.       <grid>
  90.         <columns>
  91.           <column/>
  92.           <column/>
  93.           <column/>
  94.         </columns>
  95.         <rows>
  96.           <row>
  97.             <separator class="indent"/>
  98.             <label control="personalNamespace" value="&personalNamespace.label;"
  99.                    accesskey="&personalNamespace.accesskey;"/>
  100.             <textbox amsa_persist="true" id="personalNamespace" />
  101.           </row>
  102.           <row>
  103.             <separator class="indent"/>
  104.             <label control="publicNamespace" value="&publicNamespace.label;"
  105.                    accesskey="&publicNamespace.accesskey;"/>
  106.             <textbox amsa_persist="true" id="publicNamespace"/>
  107.           </row>
  108.           <row>
  109.             <separator class="indent"/>
  110.             <label control="otherUsersNamespace" value="&otherUsersNamespace.label;"
  111.                    accesskey="&otherUsersNamespace.accesskey;"/>
  112.             <textbox amsa_persist="true" id="otherUsersNamespace"/>
  113.           </row>
  114.         </rows>
  115.       </grid>
  116.       <grid>
  117.         <columns>
  118.           <column/>
  119.           <column/>
  120.         </columns>
  121.         <rows>
  122.           <row>
  123.             <separator class="indent"/>
  124.             <checkbox amsa_persist="true" id="overrideNamespaces"
  125.                       label="&overrideNamespaces.label;"
  126.                       accesskey="&overrideNamespaces.accesskey;"/>
  127.           </row>
  128.         </rows>
  129.       </grid>
  130.     </vbox>
  131.  
  132.  
  133.     <!-- POP3 Panel -->
  134.     <vbox id="pop3Panel">
  135.       <description flex="1">&pop3Desc.label;</description>
  136.       <hbox align="center">
  137.         <radiogroup id="folderStorage" orient="horizontal" amsa_persist="true">
  138.           <rows>
  139.             <row>
  140.               <radio value="1" id = "accountDirectory" label="&accountDirectory.label;"
  141.                      accesskey="&accountDirectory.accesskey;"
  142.                      oncommand="updateInboxAccount(false, false)" />
  143.             </row>
  144.             <row align = "center">
  145.               <radio value="0" id = "globalInbox" label="&globalInbox.label;"
  146.                       oncommand="updateInboxAccount(false, true)" 
  147.                       accesskey="&globalInbox.accesskey;"/>
  148.             </row>
  149.             <row>
  150.               <radio value="2" id = "deferToServer" label="&deferToServer.label;"
  151.                      accesskey="&deferToServer.accesskey;"
  152.                      oncommand="updateInboxAccount(true, true)"/>
  153.                   <menulist id="deferedServerFolderPicker" />
  154.             </row>
  155.           </rows>
  156.         </radiogroup>
  157.       </hbox>
  158.  
  159.       <separator class="thin"/>
  160.  
  161.       <checkbox amsa_persist="true" id="deferGetNewMail"
  162.               label="&deferGetNewMail.label;"
  163.               accesskey="&deferGetNewMail.accesskey;"/>
  164.     </vbox>
  165. </dialog>
  166.